home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / Book Chapters / 03 - Advanced Graphics / Example 7 / background.h < prev    next >
Text File  |  1995-02-28  |  438b  |  29 lines

  1. //
  2. //    File: background.h
  3. //
  4. //    This file is the header for background.c.
  5. //
  6. //    2/18/95 -- Created by Mick
  7. //
  8.  
  9. // shield
  10. #ifndef _background_h_
  11. #define _background_h_
  12.  
  13. // include files
  14.  
  15. // global defines
  16.  
  17. // global typedefs
  18.  
  19. // extern functions
  20.  
  21. extern void startupBackground( void );
  22. extern void shutdownBackground( void );
  23. extern void restoreBackground( Rect *inRect );
  24.  
  25. // extern data
  26.  
  27. // end of shield
  28. #endif // #ifndef _background_h_
  29.